home *** CD-ROM | disk | FTP | other *** search
- global gMoodS, gStateS, gAnswersS, gWin, gJR, gTM, gMS
-
- on startMovie
- set gAnswersS to 1
- end
-
- on PickMood
- set gMoodS to random(3)
- if gMoodS = 1 then
- play frame "MoodBad"
- else
- nothing()
- end if
- if gMoodS = 2 then
- play frame "MoodTired"
- else
- nothing()
- end if
- if gMoodS = 3 then
- play frame "MoodHorny"
- else
- nothing()
- end if
- end
-
- on stateOfBeing
- set gStateS to 3
- set the castNum of sprite 14 to gStateS
- updateStage()
- end
-
- on Aanswer i, y
- set myList to list("HT4.AIF", "LT.AIF", "NC1.AIF", "R1.AIF", "SS1.AIF", "ST1.AIF", "WC1.AIF", "T1.AIF", "UH1.AIF")
- set z to random(9)
- set mySound to getAt(myList, z)
- if gAnswersS = i then
- set gStateS to gStateS + 1
- if gStateS > 6 then
- set gStateS to 6
- end if
- set the castNum of sprite 14 to gStateS
- updateStage()
- set gAnswersS to gAnswersS + 1
- if y = 9 then
- play frame the frame + 4
- else
- play frame the frame + 1
- end if
- end if
- if gAnswersS <> i then
- set gStateS to gStateS - 1
- if gStateS = 0 then
- play frame "fin"
- else
- puppetSound(mySound)
- set the castNum of sprite 14 to gStateS
- play frame the frame
- end if
- end if
- end
-
- on winner
- set gWin to gWin + 1
- play movie "Virtual Sex:MAIN"
- end
-
- on clearTheBitches
- set gJR to 0
- set gTM to 0
- set gMS to 0
- play movie "Virtual Sex:MAIN"
- end
-